Method: \saffire\io.print()

Signature void io.print(... args);

Prints text.

Arguments

... args
A variable list of objects.

Notes:

Any non-string objects that are passed will be implicitly cast to string through the __string() method.

Examples:

io.print("hello", "world");
// hello world

io.print("hello", "world from saffire", 1234);
// hello world from saffire 1234